projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eecc904
)
(JIS_TO_SJIS2): Fix the code range check.
author
Kenichi Handa
<handa@m17n.org>
Wed, 8 Jul 2009 02:25:19 +0000
(
02:25
+0000)
committer
Kenichi Handa
<handa@m17n.org>
Wed, 8 Jul 2009 02:25:19 +0000
(
02:25
+0000)
src/coding.h
patch
|
blob
|
history
diff --git
a/src/coding.h
b/src/coding.h
index 153ec95209392bfa139ef31fc7823371c874eabd..450433fda968a8c42221ecda221177645746e3cb 100644
(file)
--- a/
src/coding.h
+++ b/
src/coding.h
@@
-630,7
+630,7
@@
struct coding_system
if (j1 & 1) \
{ \
s1 = (j1 <= 0x25 ? 0xF0 + (j1 - 0x21) / 2 \
- : j1 <= 0x2
7
? 0xF3 + (j1 - 0x2D) / 2 \
+ : j1 <= 0x2
F
? 0xF3 + (j1 - 0x2D) / 2 \
: 0xF5 + (j1 - 0x6F) / 2); \
s2 = j2 + ((j2 >= 0x60) ? 0x20 : 0x1F); \
} \